home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Archive / Graphics / QuickDraw GX / IW-Half-Dither / source / NewApp.a < prev    next >
Encoding:
Text File  |  2000-09-28  |  2.0 KB  |  97 lines  |  [TEXT/MPS ]

  1. ;------------------------------------------------------------------------------
  2. ;
  3. ;    FILENAME
  4. ;        NewApp.a
  5. ;
  6. ;    DESCRIPTION
  7. ;        Contains the code necessary to dispatch from a routine in one code
  8. ;        module to a code segment in another module or within the same module
  9. ;
  10. ;    COPYRIGHT
  11. ;        Copyright © Apple Computer, Inc. 1989-1996
  12. ;        All rights reserved. 
  13. ;
  14. ;    MODIFICATION HISTORY
  15. ;
  16. ;        04/23/90        Tom Dowdy    New Today
  17. ;        12/20/93        dmh            Sync'd with the shipping 1.0b3 GX driver.
  18. ;        08/26/94        dmh            Sync'd with the shipping 1.0.1 GX driver.
  19. ;        05/21/96        Jason H-H    Updated for ETO#19/MW.
  20. ;        05/21/96        Don Swatman    Modifications for halftoning, dithering and plane seperations.
  21. ;
  22. ;--------------------------------------------------------------------------------
  23.  
  24.                 CASE    OBJ
  25.                 STRING    ASIS
  26.  
  27. SD_JumpTable    PROC    EXPORT
  28.                 dc.l    0            
  29.     
  30.     ; Universal messages
  31.  
  32.                 IMPORT SD_Initialize
  33.                 JMP SD_Initialize
  34.             
  35.                 IMPORT SD_ShutDown
  36.                 JMP SD_ShutDown
  37.             
  38.                 IMPORT SD_DefaultPrinter
  39.                 JMP SD_DefaultPrinter
  40.             
  41.                 IMPORT SD_DefaultFormat
  42.                 JMP SD_DefaultFormat
  43.             
  44.                 IMPORT SD_DefaultJob
  45.                 JMP SD_DefaultJob
  46.         
  47.                 IMPORT SD_JobFormatDialog
  48.                 JMP SD_JobFormatDialog
  49.             
  50.                 IMPORT SD_JobFormatModeQuery
  51.                 JMP SD_JobFormatModeQuery
  52.         
  53.                 IMPORT SD_RenderPage
  54.                 JMP SD_RenderPage
  55.             
  56.                 IMPORT SD_OpenConnection
  57.                 JMP SD_OpenConnection
  58.             
  59.                 IMPORT SD_CloseConnection
  60.                 JMP SD_CloseConnection
  61.             
  62.                 IMPORT SD_StartSendPage
  63.                 JMP SD_StartSendPage
  64.             
  65.                 IMPORT SD_FinishSendPage
  66.                 JMP SD_FinishSendPage
  67.             
  68.                 IMPORT SD_DumpBuffer
  69.                 JMP SD_DumpBuffer
  70.             
  71.                 IMPORT SD_FreeBuffer
  72.                 JMP SD_FreeBuffer
  73.             
  74.                 IMPORT SD_SetupImageData
  75.                 JMP SD_SetupImageData
  76.             
  77.                 IMPORT SD_JobIdle
  78.                 JMP SD_JobIdle
  79.  
  80.     ; print dialog stuff
  81.     
  82.                 IMPORT SD_JobPrintDialog
  83.                 JMP SD_JobPrintDialog
  84.     
  85.                 IMPORT SD_HandlePanelEvent
  86.                 JMP SD_HandlePanelEvent
  87.         
  88.     ; Raster messages
  89.     
  90.                 IMPORT SD_PackageBitmap
  91.                 JMP SD_PackageBitmap
  92.             
  93.                 IMPORT SD_LineFeed
  94.                 JMP SD_LineFeed
  95.     
  96.     END
  97.